NET FTP Library
SynchronizeUploadWithDelete(String,String,List<String>) Method
Example 






KellermanSoftware.NetFtpLibrary Namespace > FTP Class > SynchronizeUploadWithDelete Method : SynchronizeUploadWithDelete(String,String,List<String>) Method
The local directory to upload
The FTP directory to upload to
Filename, directory name, or wildcard to exclude
Synchronize Upload a Directory With Delete and Exclude a List of files, directories, or wildcards
Syntax
'Declaration
 
Public Overloads Function SynchronizeUploadWithDelete( _
   ByVal localDirectory As System.String, _
   ByVal ftpDirectory As System.String, _
   ByVal filesAndDirectoriesToExclude As System.Collections.Generic.List(Of String) _
) As System.Collections.Generic.List(Of TransferInfo)
'Usage
 
Dim instance As FTP
Dim localDirectory As System.String
Dim ftpDirectory As System.String
Dim filesAndDirectoriesToExclude As System.Collections.Generic.List(Of String)
Dim value As System.Collections.Generic.List(Of TransferInfo)
 
value = instance.SynchronizeUploadWithDelete(localDirectory, ftpDirectory, filesAndDirectoriesToExclude)
public System.Collections.Generic.List<TransferInfo> SynchronizeUploadWithDelete( 
   System.string localDirectory,
   System.string ftpDirectory,
   System.Collections.Generic.List<string> filesAndDirectoriesToExclude
)
public function SynchronizeUploadWithDelete( 
    localDirectory: System.String;
    ftpDirectory: System.String;
    filesAndDirectoriesToExclude: System.Collections.Generic.List
): System.Collections.Generic.List; 
public function SynchronizeUploadWithDelete( 
   localDirectory : System.String,
   ftpDirectory : System.String,
   filesAndDirectoriesToExclude : System.Collections.Generic.List
) : System.Collections.Generic.List;
public: System.Collections.Generic.List<TransferInfo*>* SynchronizeUploadWithDelete( 
   System.string* localDirectory,
   System.string* ftpDirectory,
   System.Collections.Generic.List<string*>* filesAndDirectoriesToExclude
) 
public:
System.Collections.Generic.List<TransferInfo^>^ SynchronizeUploadWithDelete( 
   System.String^ localDirectory,
   System.String^ ftpDirectory,
   System.Collections.Generic.List<String^>^ filesAndDirectoriesToExclude
) 

Parameters

localDirectory
The local directory to upload
ftpDirectory
The FTP directory to upload to
filesAndDirectoriesToExclude
Filename, directory name, or wildcard to exclude
Remarks
bin (Directory or file named bin anywhere in the structure) somefile.txt (a file) *.bak (Exclude all files with *.bak)
Example
FTP ftp = new FTP(); //Trial Mode            
//FTP ftp = new FTP("place user name here", "place license key here");
 
// set the name of the FTP server( its URL )
ftp.HostAddress = "ftp.fsz.bme.hu"; // a hungarian university. change this to your ftp server
ftp.UserName = "anonymous"; // replace with your user name
ftp.Password = "user@mail.com"; // replace with your password
 
//Transfer files that do not exist locally OR Files that have a different byte count OR Files that have a modification date difference in seconds greater than 60
ftp.SynchronizeUploadWithDelete("C:\\Download", "TestDir", new List<string> { "web.config" });
System.Console.WriteLine("transferring unsynchronized files to the TestDir FTP folder");
 
System.Console.WriteLine("{0} files have been Transferred", ftp.FileCount);
Dim ftp As FTP = New FTP() 'Trial Mode
'FTP ftp = new FTP("place user name here", "place license key here");
 
' set the name of the FTP server( its URL )
ftp.HostAddress = "ftp.fsz.bme.hu" ' a hungarian university. change this to your ftp server
ftp.UserName = "anonymous" ' replace with your user name
ftp.Password = "user@mail.com" ' replace with your password
 
'Transfer files that do not exist locally OR Files that have a different byte count OR Files that have a modification date difference in seconds greater than 60
ftp.SynchronizeUploadWithDelete("C:\\Download", "TestDir", new List<string> { "web.config" })
System.Console.WriteLine("transferring unsynchronized files to the TestDir FTP folder")
 
System.Console.WriteLine("{0} files have been Transferred", ftp.FileCount)
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

FTP Class
FTP Members
Overload List